home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / etc_-_Configuration_Files / PPP / OPTIONS < prev   
Text File  |  1999-09-17  |  10KB  |  270 lines

  1. # /etc/ppp/options
  2. # $Id: options,v 1.4 1996/05/01 18:57:04 alvar Exp $
  3. # Originally created by Jim Knoble <jmknoble@mercury.interpath.net>
  4. # Modified for Debian by alvar Bray <alvar@meiko.co.uk>
  5. # Modified for PPP Server setup by Christoph Lameter <clameter@debian.org>
  6. #
  7. # Use the command  egrep -v '#|^ *$' /etc/ppp/options to quickly see what 
  8. # options are active in this file.
  9.  
  10. # Specify which DNS Servers the incoming Win95 or WinNT Connection should use
  11. # Two Servers can be remotely configured
  12. # dns-addr 192.168.1.1
  13. # dns-addr 192.168.1.2
  14.  
  15. # Specify which WINS Servers the incoming connection Win95 or WinNT should use
  16. # wins-addr 192.168.1.50
  17. # wins-addr 192.168.1.51
  18.  
  19. # Run the executable or shell command specified after pppd has
  20. # terminated the link.  This script could, for example, issue commands
  21. # to the modem to cause it to hang up if hardware modem control signals
  22. # were not available.
  23. #disconnect "chat -- \d+++\d\c OK ath0 OK"
  24.  
  25. # async character map -- 32-bit hex; each bit is a character
  26. # that needs to be escaped for pppd to receive it.  0x00000001
  27. # represents '\x01', and 0x80000000 represents '\x1f'.
  28. asyncmap 0
  29.  
  30. # Require the peer to authenticate itself before allowing network
  31. # packets to be sent or received.
  32. # For a PPP Server with script based logins not using PAP or CHAP
  33. # you need to disable this setting.
  34. # auth
  35.  
  36. # Use hardware flow control (i.e. RTS/CTS) to control the flow of data
  37. # on the serial port.
  38. crtscts
  39.  
  40. # Use software flow control (i.e. XON/XOFF) to control the flow of data
  41. # on the serial port.
  42. #xonxoff
  43.  
  44. # Specifies that certain characters should be escaped on transmission
  45. # (regardless of whether the peer requests them to be escaped with its
  46. # async control character map).  The characters to be escaped are
  47. # specified as a list of hex numbers separated by commas.  Note that
  48. # almost any character can be specified for the escape option, unlike
  49. # the asyncmap option which only allows control characters to be
  50. # specified.  The characters which may not be escaped are those with hex
  51. # values 0x20 - 0x3f or 0x5e.
  52. #escape 11,13,ff
  53.  
  54. # Don't use the modem control lines.
  55. #local
  56.  
  57. # Specifies that pppd should use a UUCP-style lock on the serial device
  58. # to ensure exclusive access to the device.
  59. lock
  60.  
  61. # Use the modem control lines.  On Ultrix, this option implies hardware
  62. # flow control, as for the crtscts option.  (This option is not fully
  63. # implemented.)
  64. modem
  65.  
  66. # Set the MRU [Maximum Receive Unit] value to <n> for negotiation.  pppd
  67. # will ask the peer to send packets of no more than <n> bytes. The
  68. # minimum MRU value is 128.  The default MRU value is 1500.  A value of
  69. # 296 is recommended for slow links (40 bytes for TCP/IP header + 256
  70. # bytes of data).
  71. #mru 542
  72.  
  73. # Set the interface netmask to <n>, a 32 bit netmask in "decimal dot"
  74. # notation (e.g. 255.255.255.0).
  75. #netmask 255.255.255.0
  76.  
  77. # Disables the default behaviour when no local IP address is specified,
  78. # which is to determine (if possible) the local IP address from the
  79. # hostname. With this option, the peer will have to supply the local IP
  80. # address during IPCP negotiation (unless it specified explicitly on the
  81. # command line or in an options file).
  82. #noipdefault
  83.  
  84. # Enables the "passive" option in the LCP.  With this option, pppd will
  85. # attempt to initiate a connection; if no reply is received from the
  86. # peer, pppd will then just wait passively for a valid LCP packet from
  87. # the peer (instead of exiting, as it does without this option).
  88. #passive
  89.  
  90. # With this option, pppd will not transmit LCP packets to initiate a
  91. # connection until a valid LCP packet is received from the peer (as for
  92. # the "passive" option with old versions of pppd).
  93. #silent
  94.  
  95. # Don't request or allow negotiation of any options for LCP and IPCP
  96. # (use default values).
  97. #-all
  98.  
  99. # Disable Address/Control compression negotiation (use default, i.e.
  100. # address/control field disabled).
  101. #-ac
  102.  
  103. # Disable asyncmap negotiation (use the default asyncmap, i.e. escape
  104. # all control characters).
  105. #-am
  106.  
  107. # Don't fork to become a background process (otherwise pppd will do so
  108. # if a serial device is specified).
  109. #-detach
  110.  
  111. # Disable IP address negotiation (with this option, the remote IP
  112. # address must be specified with an option on the command line or in an
  113. # options file).
  114. #-ip
  115.  
  116. # Disable magic number negotiation.  With this option, pppd cannot
  117. # detect a looped-back line.
  118. #-mn
  119.  
  120. # Disable MRU [Maximum Receive Unit] negotiation (use default, i.e.
  121. # 1500).
  122. #-mru
  123.  
  124. # Disable protocol field compression negotiation (use default, i.e.
  125. # protocol field compression disabled).
  126. #-pc
  127.  
  128. # Require the peer to authenticate itself using PAP.
  129. #+pap
  130.  
  131. # Don't agree to authenticate using PAP.
  132. #-pap
  133.  
  134. # Require the peer to authenticate itself using CHAP [Cryptographic
  135. # Handshake Authentication Protocol] authentication.
  136. #+chap
  137.  
  138. # Don't agree to authenticate using CHAP.
  139. #-chap
  140.  
  141. # Disable negotiation of Van Jacobson style IP header compression (use
  142. # default, i.e. no compression).
  143. #-vj
  144.  
  145. # Increase debugging level (same as -d).  If this option is given, pppd
  146. # will log the contents of all control packets sent or received in a
  147. # readable form.  The packets are logged through syslog with facility
  148. # daemon and level debug. This information can be directed to a file by
  149. # setting up /etc/syslog.conf appropriately (see syslog.conf(5)).  (If
  150. # pppd is compiled with extra debugging enabled, it will log messages
  151. # using facility local2 instead of daemon).
  152. #debug
  153.  
  154. # Append the domain name <d> to the local host name for authentication
  155. # purposes.  For example, if gethostname() returns the name porsche,
  156. # but the fully qualified domain name is porsche.Quotron.COM, you would
  157. # use the domain option to set the domain name to Quotron.COM.
  158. #domain <d>
  159.  
  160. # Enable debugging code in the kernel-level PPP driver.  The argument n
  161. # is a number which is the sum of the following values: 1 to enable
  162. # general debug messages, 2 to request that the contents of received
  163. # packets be printed, and 4 to request that the contents of transmitted
  164. # packets be printed.
  165. #kdebug n
  166.  
  167. # Set the MTU [Maximum Transmit Unit] value to <n>. Unless the peer
  168. # requests a smaller value via MRU negotiation, pppd will request that
  169. # the kernel networking code send data packets of no more than n bytes
  170. # through the PPP network interface.
  171. #mtu <n>
  172.  
  173. # Enforce the use of the hostname as the name of the local system for
  174. # authentication purposes (overrides the name option).
  175. #usehostname
  176.  
  177. # Set the assumed name of the remote system for authentication purposes
  178. # to <n>.
  179. #remotename <n>
  180.  
  181. # Add an entry to this system's ARP [Address Resolution Protocol]
  182. # table with the IP address of the peer and the Ethernet address of this
  183. # system.
  184. proxyarp
  185.  
  186. # Use the system password database for authenticating the peer using
  187. # PAP. Note: mgetty already provides this option. If this is specified
  188. # then dialin from users using a script under Linux to fire up ppp wont work.
  189. # login
  190.  
  191. # If this option is given, pppd will send an LCP echo-request frame to
  192. # the peer every n seconds. Under Linux, the echo-request is sent when
  193. # no packets have been received from the peer for n seconds. Normally
  194. # the peer should respond to the echo-request by sending an echo-reply.
  195. # This option can be used with the lcp-echo-failure option to detect
  196. # that the peer is no longer connected.
  197. lcp-echo-interval 30
  198.  
  199. # If this option is given, pppd will presume the peer to be dead if n
  200. # LCP echo-requests are sent without receiving a valid LCP echo-reply.
  201. # If this happens, pppd will terminate the connection.  Use of this
  202. # option requires a non-zero value for the lcp-echo-interval parameter.
  203. # This option can be used to enable pppd to terminate after the physical
  204. # connection has been broken (e.g., the modem has hung up) in
  205. # situations where no hardware modem control lines are available.
  206. lcp-echo-failure 4
  207.  
  208. # Set the LCP restart interval (retransmission timeout) to <n> seconds
  209. # (default 3).
  210. #lcp-restart <n>
  211.  
  212. # Set the maximum number of LCP terminate-request transmissions to <n>
  213. # (default 3).
  214. #lcp-max-terminate <n>
  215.  
  216. # Set the maximum number of LCP configure-request transmissions to <n>
  217. # (default 10).
  218. #lcp-max-configure <n>
  219.  
  220. # Set the maximum number of LCP configure-NAKs returned before starting
  221. # to send configure-Rejects instead to <n> (default 10).
  222. #lcp-max-failure <n>
  223.  
  224. # Set the IPCP restart interval (retransmission timeout) to <n>
  225. # seconds (default 3).
  226. #ipcp-restart <n>
  227.  
  228. # Set the maximum number of IPCP terminate-request transmissions to <n>
  229. # (default 3).
  230. #ipcp-max-terminate <n>
  231.  
  232. # Set the maximum number of IPCP configure-request transmissions to <n>
  233. # (default 10).
  234. #ipcp-max-configure <n>
  235.  
  236. # Set the maximum number of IPCP configure-NAKs returned before starting
  237. # to send configure-Rejects instead to <n> (default 10).
  238. #ipcp-max-failure <n>
  239.  
  240. # Set the PAP restart interval (retransmission timeout) to <n> seconds
  241. # (default 3).
  242. #pap-restart <n>
  243.  
  244. # Set the maximum number of PAP authenticate-request transmissions to
  245. # <n> (default 10).
  246. #pap-max-authreq <n>
  247.  
  248. # Set the CHAP restart interval (retransmission timeout for
  249. # challenges) to <n> seconds (default 3).
  250. #chap-restart <n>
  251.  
  252. # Set the maximum number of CHAP challenge transmissions to <n>
  253. # (default 10).
  254. #chap-max-challenge
  255.  
  256. # If this option is given, pppd will rechallenge the peer every <n>
  257. # seconds.
  258. #chap-interval <n>
  259.  
  260. # With this option, pppd will accept the peer's idea of our local IP
  261. # address, even if the local IP address was specified in an option.
  262. #ipcp-accept-local
  263.  
  264. # With this option, pppd will accept the peer's idea of its (remote) IP
  265. # address, even if the remote IP address was specified in an option.
  266. #ipcp-accept-remote
  267.  
  268.